home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-11-02 | 1.2 KB | 55 lines | [TEXT/KEEN] |
- /* A sampler of declarations: bring this file to the front, */
- /* select all of it, and run "$Whazzat" on the front text selection */
- /* NOTE the illegal constructs will be translated without complaint */
- /* If you have open an EnterAct project which contains the source files */
- /* for hAWK itself and your dictionary is up to date, then the */
- /* translations for b_get_three() and assoc_scan_sort() will be more */
- /* readable. */
- void *(*comp)(int *, char *, volatile char joe, int (*fnc)(void *, void *, ...));
-
- int b_get_three(NODE *tree, NODE **res1, NODE **res2, NODE **res3);
-
- extern struct search *assoc_scan_sort(NODE *symbol);
-
- /* legal constructs */
- int i;
- int *p;
- int a[];
- int f();
- int **pp;
- int (*pa)[];
- int (*pf)();
- int *ap[];
- int aa[][];
- int *fp();
- int ***ppp;
- int (**ppa)[];
- int (**ppf)();
- int *(*pap)[];
- int (*paa)[][];
- int *(*pfp)();
- int **app[];
- int (*apa[])[];
- int (*apf[])();
- int *aap[][];
- int aaa[][][];
- int **fpp();
- int (*fpa())[];
- int (*fpf())();
-
- /* illegal constructs */
- int af[]();
- int fa()[];
- int ff()();
- int (*paf)[]();
- int (*pfa)()[];
- int (*pff)()();
- int aaf[][]();
- int *afp[]();
- int afa[]()[];
- int aff[]()();
- int *fap()[];
- int faa()[][];
- int faf()[]();
- int *ffp()();
-